how to make white image black in css

38

.yourImage{
    -webkit-filter: invert(100%); /* Safari/Chrome */
    filter: invert(100%);
}

Comments

Submit
0 Comments